home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-23 | 1003 b | 41 lines |
- INSTALL_DIR=/usr/skunk
-
- BINDIR = $(INSTALL_DIR)/bin
- LIBDIR = $(INSTALL_DIR)/lib
- INCDIR = $(INSTALL_DIR)/include/$(PROGRAM)
- XAPPLOADDIR = $(INSTALL_DIR)/lib/X11/app-defaults
- CONFIGDIR = /usr/lib/X11/config
- MKDIRHIER = /bin/sh /usr/bin/X11/mkdirhier
- MANDIR = $(INSTALL_DIR)/man/man.1
- MANSUFFIX = 1
-
-
-
- /**/#
- /**/# This Imakefile makes the programs cpicker and pixedit. They
- /**/# are used to select colors
- /**/#
- /**/# This Imakefile was produced by Dana Chee (dana@bellcore.com)
- /**/# Motif variant experimentally produced by Mike Yang (mikey@sgi.com)
- /**/#
- CSRCS = color.c Cpick.c
- COBJS = color.o Cpick.o
-
- SRCS1 = cpicker.c $(CSRCS)
- OBJS1 = cpicker.o $(COBJS)
-
- SRCS2 = pixedit.c $(CSRCS)
- OBJS2 = pixedit.o $(COBJS)
-
- PROGRAMS = cpicker pixedit
- #LOCAL_LIBRARIES = $(XMLIB) -lm
- LOCAL_LIBRARIES = XmClientLibs -lm
-
- ComplexProgramTarget_1(cpicker,$(LOCAL_LIBRARIES),$(SYSLIBS))
- ComplexProgramTarget_2(pixedit,$(LOCAL_LIBRARIES),$(SYSLIBS))
-
- InstallAppDefaults(Cpicker)
- InstallAppDefaults(Pixedit)
-
-
-